home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 2000 November / cd joystick no120 novembre 2000 cd 1.iso / data / demos / gunlok / data1.cab / Program_Executable_Files / scripts / reapor.gsh < prev    next >
Text File  |  2000-08-22  |  1KB  |  56 lines

  1. // defines REAPOR
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_REAPOR_GSH
  8. #define INCLUDED_REAPOR_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. #include "defaults.gsh"
  13. #include "reaporfrag.gsh"
  14.  
  15. hierarchy Hcy_reapor
  16. {
  17.     file "units\LOWreapor.RIF"
  18.     name "LOWreapor"
  19.     hotspot "dumflash"
  20. }
  21.  
  22. character Chr_reapor : Chr_DefaultBaddie
  23. {
  24.     turning speed   0.8    // this is in revolutions per second
  25.     walking speed   1.0    // this is in animation cycles per second
  26.     weapon            maxim laser
  27.     strength        90    // initial strength points
  28.     aim             2    // how many degrees off target he can be at most
  29.     sight angle    25    // in degrees
  30.     sight range     20    // in metres
  31.     hearing range    17    // in metres
  32.     aggression    1    // from 0 to 1
  33.     gun yaw angle    30    // in degrees
  34.  
  35. }
  36.  
  37. role Rol_reapor : Rol_DefaultRobot
  38. {
  39.     shape            Hcy_reapor
  40.  
  41.     character        Chr_reapor
  42.  
  43.     identifier        "reapor"
  44.  
  45.     armour    5
  46.  
  47.     destructibility    Frg_reapor
  48.  
  49.     ai                bot
  50. }
  51.  
  52. ////////////////////////////////////////////////////////////////////////////////////
  53.  
  54. // end wrapper - for preventing multiple or recursive inclusions
  55. #endif // !INCLUDED_REAPOR_GSH
  56.